/* second page */




/* ✅ Default (phone first) */
.hero-sec-des {
    max-width: 392px;
    width: 100%;
    color: #FFFEFB;
    text-align: right;
    font-family: "SafiroMedium";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
}

.hero-sec-btn {
  max-width: 16rem;
  color: #000;
  font-family: "MiedingerBold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
 padding: 10px 30px;
  border-radius: 30px;
  background-color: #fff;
  position: relative;
  overflow: hidden; /* important for clipping */
  border: 2px solid #000; /* optional border like outline-light */
}

/* The clip wrapper (fixed height of text) */
.label-clip {
  display: block;
  position: relative;
  height: 1em;         /* matches text line-height */
  overflow: hidden;
}

/* Both labels stacked */
.button-label {
  display: block;
  transform: translateY(0%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Second label sits below first initially */
.button-label:last-child {
  position: absolute;
  top: 100%; /* below the first label */
  left: 0;
  right: 0;
}

/* Hover effect: slide first up, second into view */
.hero-sec-btn:hover .button-label:first-child {
  transform: translateY(-100%);
}
.hero-sec-btn:hover .button-label:last-child {
  transform: translateY(-100%);
}


.hero-sec-des2{
  width: 100%;
  max-width: clamp(300px, 50vw, 500px);
  color: #FFFEFB;
  font-family: "MiedingerBold";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: var(--spacing-xs);
}

.hero-heading{
  color: #FFFEFB;
  font-family: "MiedingerBold";
  font-size: clamp(2rem, 8vw, 5.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 var(--spacing-xs) 0;
}

.butterfly-cls{
  width: clamp(400px, 50vw, 418.923px);
  height: auto;
  transform: rotate(-10.155deg);
  flex-shrink: 0;
  aspect-ratio: 135/82;
  margin-top: var(--spacing-sm);
}
/* hero section animations css */
.hero-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* overflow: hidden; */
  padding: var(--spacing-sm);
  text-align: left;
  width: 100%;
}

.hero-headline-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  width: 100%;
  max-width: clamp(300px, 80vw, 1200px);
}

.headline-clip {
  overflow: hidden;
  position: relative;
  width: 100%;              /* full row occupy karega */
  display: block;
  /* text-align: left ; */
  margin-bottom: var(--spacing-xs);
}
.hero-heading {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(2rem, 8vw, 5.5rem);          /* responsive font size */
  font-weight: 600;
  text-align: left;          /* left aligned */
  width: 100%;               /* force full width */
  display: inline-block;     /* GSAP transform ke liye inline-block better */
  position: relative;
}


/* Media Queries for Hero Section */
@media (min-width: 37.5em) { /* 600px - Tablet */
  .hero-heading {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
  }
  


  .hero-sec-des{
color: #FFFEFB;
font-family: "SafiroMedium";
font-size: var(--text-base);
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: var(--spacing-sm);
}

  .hero-sec-des,
  .hero-sec-des2 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: clamp(350px, 70vw, 600px);
  }
  

  
  .butterfly-cls {
    width: clamp(250px, 40vw, 450px);
  }
}

@media (min-width: 64em) { /* 1024px - Laptop */
  .hero-heading {
    font-size: clamp(3rem, 6vw, 5rem);
  }
  
  .hero-sec-des,
  .hero-sec-des2 {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    max-width: clamp(400px, 60vw, 700px);
  }
  
 
  
  .butterfly-cls {
    width: clamp(300px, 35vw, 500px);
  }
}

@media (min-width: 90em) { /* 1440px - Desktop */
  .hero-heading {
    font-size: clamp(3.5rem, 5vw, 6rem);
  }
  
  .hero-sec-des,
  .hero-sec-des2 {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    max-width: clamp(450px, 50vw, 800px);
  }
  

  
  .butterfly-cls {
    width: clamp(350px, 30vw, 550px);
  }
}

/* Optional: adjust sidebar z-index */
.sidebar {
  z-index: 9999;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80px; /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: transparent; /* or rgba(0,0,0,0.1) for slight overlay */
  z-index: 2000;
  pointer-events: none; /* allows underlying elements to be clickable if needed */
}
/* .sticky-header .logo-video {
  width: 120px; 
  height: auto;
  pointer-events: auto;
} */
.sticky-header .hamburger {
  position: static;
  margin: 0;
  pointer-events: auto;
}


    /* Sticky Section Layout */
    .sticky-section {
      display: flex;
      align-items: flex-start;
      gap: clamp(2rem, 5vw, 4rem);              /* heading aur content ke beech distance */
      padding: 0 clamp(2vw, 5vw, 10vw);
      min-height: 30vh;      /* scroll ke liye height */
      flex-wrap: wrap;
    }


    /* Sticky Heading Side */
    .sticky-wrapper {
      position: sticky;
      top: clamp(10vh, 15vh, 20vh);
      flex: 0 0 clamp(40%, 45vw, 52%);          /* heading ke liye column */
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }


     /* Heading Style */
    .sticky-heading {
      color: rgb(242, 205, 207);
      font-family: "MiedingerBold";
      font-size: clamp(1.2rem, 4vw, 3rem);
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      text-transform: uppercase;
    }


    /* Media Queries for Sticky Section */
@media (min-width: 37.5em) { /* 600px - Tablet */
  .sticky-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: clamp(1.2rem, 4vw, 4rem);
  }
  
  .block {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  }
  
  .sticky-wrapper {
    top: clamp(8vh, 12vh, 15vh);
  }
}

@media (min-width: 64em) { /* 1024px - Laptop */
  .sticky-heading {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: clamp(1.8rem, 3vw, 4.5rem);
  }
  
  .block {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin-bottom: clamp(0.9rem, 1.2vw, 1.3rem);
  }
  
  .sticky-wrapper {
    top: clamp(12vh, 14vh, 18vh);
  }
}



@media (min-width: 90em) { /* 1440px - Desktop */
  .sticky-heading {
    font-size: clamp(2.2rem, 2.5vw, 3rem);
    margin-bottom: clamp(2rem, 2.5vw, 5rem);
  }
  
  .block {
    font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    margin-bottom: clamp(1rem, 1vw, 1.5rem);
  }
}
      /* Content Column */
    .content-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      margin-top: 0;         /* heading baseline se align */
      max-width: clamp(300px, 60vw, 600px);
    }

    /* Text Blocks */
    .block {
      width: 100%;
      max-width: clamp(300px, 50vw, 515px);
      color: #FFFEFB;
      font-family: var( --font-secondary);
      font-style: normal;
      font-weight: 400;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
      opacity: 0;
      transform: translateY(clamp(20px, 5vw, 40px));
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      line-height: 1.2;
      position: relative;
    }


    /* Example image */
    .moth {
      position: relative;
      max-width: 150px;
      margin-top: 1rem;
    }


        /* Responsive adjustments for mobile */
    @media (max-width: 768px) {
      .sticky-section {
        flex-direction: column;
        gap: 0;
      }
      
      .sticky-wrapper {
        position: relative;
        top: 0;
        flex: 0 0 auto;
        /*margin-bottom: var(--spacing-lg);*/
      }
      
      .content-col {
        max-width: 100%;
      }
      
      .block {
        max-width: 100%;
      }
    }

/* name section css */
  .names-section {
  height: 100vh; /* full viewport */
  display: flex;
  flex-direction: column;
  justify-content: center; /* center vertically */
  align-items: center;     /* center horizontally */
  overflow: hidden;
  text-align: center;
  padding: var(--spacing-sm);
}


.small-subhead {
  margin-bottom: var(--spacing-sm);
  color: #FFFEFB;
  font-family: "SafiroMedium";
  font-size: var(--text-base);
  font-weight: 400;
}
.names-list-clip {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: clamp(60px, 15vh, 135px); /* default fluid */
}

/* 📱 Mobile (<=480px) */
@media (max-width: 480px) {
  .names-list-clip {
    flex-flow: column;
    height: 1em;
    font-size: 8vw;
    line-height: 1;
    display: flex;
    overflow: hidden;
  }
}



/* 🖥️ Large Desktop (1201px and above) */
@media (min-width: 1201px) {
  .names-list-clip {
    height: 135px; /* max height */
  }
}

.names-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.names-item {
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  color: #F2CDCF;
  font-family: "MiedingerBold";
  font-size: clamp(2rem, 7vw, 7.3rem);
  font-weight: 700;
  line-height: 1;
  padding: var(--spacing-3xs) 0;
}

/* end */



/* fish  */


.hero-fish {
  background: linear-gradient(to bottom, #000 50%, #f6cbd1 50%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-md) var(--spacing-sm);
}




.hero-headfishing-wrapper {
max-width: 388px;;
color: #FFFEFB;
text-align: center;
font-family: "MiedingerBold";
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
position: absolute;
z-index: 2;
top: clamp(22%, 10vh, 15%);
left: 50%;
transform: translateX(-50%);
}

@media(min-width:769px){
  .hero-headfishing-wrapper{
    font-size: 135.08px;
    max-width: 1275px;
    width: 100%;
  }
}
/* .hero-fish-video {
  max-height: 250vh;
  position: relative;
  z-index: 1;
} */

.video-placeholder {
  color: #fff;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--text-lg);
  position: absolute;
  bottom: clamp(5%, 10vh, 15%);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 90%;
  text-align: center;
}
.hero-fish-video {
  max-height: clamp(70vh, 240vh, 240vh);
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
} 
/* end */


/* founder video */
/* Founder video INSIDE hero section */
.founder-video-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.founder-video-box {
  pointer-events: auto;
  width: 100%;
  height: 20vh;            /* start small */
  overflow: hidden;
  background: transparent; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 12px;     /* initial rounded */
}

.founder-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;   /* follows container radius */
}


/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}
.play-button svg { width: 30px; height: 30px; fill: #fff; }
.play-button:hover { transform: translate(-50%, -50%) scale(1.1); }

 @media (max-width: 768px) {
  .founder-video-box {
    max-width: 100%;
    height: 20vh ;
    border-radius: 10px;
  }
  .overlay-text {
    font-size: 1.2rem;
  }
} 

 @media screen and (max-width: 480px) {
 .founder-video-box video {
  width: 100%;
  height: 70%;
  object-fit: cover;
  background: #000;
  border-radius: inherit;    
}

  
}  
/* end */


/* 🔹 Section container */
.services-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 🔹 Background video */
.services-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
@media (max-width: 768px) {
  .services-section .bg-video {
    height: 80%;      /* section से छोटा */
    width: auto;
    object-fit: contain;
    background: #000;
  }
}
/* 🔹 Dark overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* ✅ adjustable opacity */
  z-index: 1;
}

/* 🔹 Foreground content */
.services-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* 🔹 Headline */
.services-section h1 {
  letter-spacing: 2px;
  font-family: "MiedingerBold";
  font-size: 7vw;
  font-weight: 700;
  margin: 0;
  transform: translateY(120%); /* start BELOW */
  opacity: 0;
}

/* 🔹 Subtext */
.services-subtext {
  margin: 20px 0;
  letter-spacing: 1px;
  font-family: "Safiro", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* 🔹 Buttons */
.services-btns .btn {
  margin: 10px;
  padding: 8px 40px;
  border-radius: 50px;
  font-family: "MiedingerBold";
  font-size: 1rem;
  font-weight: 700;
}


.biography-btns .btn{
  margin: 10px;
  padding: 6px 30px;
  border-radius: 50px;
  font-family: "MiedingerBold";
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 768px) {
   .biography{
    text-align: start;
    margin-left: 0.5rem;
   }
 }

    /* end */

    /* dialouge section */

.dialogue-section {
  width: 100%;
  min-height: 100vh;  /* only ensures full height if content is less */
  height: auto;       /* allows growth if content > viewport */
  padding: 5rem 3rem;
  background-color: #fff;
  box-sizing: border-box;
}
  
.left-title {
  text-transform: uppercase;
  color: #0F0000;
  font-family: "MiedingerBold", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem); /* responsive font */
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 359px;
  position: sticky;
  top: 2rem; /* stick on desktop */
}
.section-heading {
  margin-bottom: 1rem;
  color: #0F0000;
  font-family: "SafiroMedium", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 712px;
}
.content-text {
  margin-bottom: 1.5rem;
  color: #0F0000;
  font-family: "SafiroMedium", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 515px;
}
  /* Responsive fixes */
 /* 📱 Mobile & Tablet */
@media (max-width: 768px) {
  section.dialogue-section {
    padding: 2rem 1rem;
    text-align: center;
    min-height: auto;   /* remove vh restriction */
  }

  .left-title {
    position: relative; /* disable sticky on mobile */
    top: auto;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-heading,
  .content-text {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }
}
  /* end */


  /* founder section */
  .founder-section {
  width: 100%;
  min-height: auto; /* height adjusts based on content */
}

   .founder-left {
    background-color: #000;
    min-height: 500px;
  }
  .founder-right {
    background-color: #f3c6cb; /* pink */
    min-height: 500px;
  }
.founder-img {
  position: absolute;
  top: 0;
  left: 32%;   /* overlap more into black side */
  height: 100%;
  width: auto;
  z-index: 2;
}
.founder-name {
    font-family: "MiedingerBold";
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
    font-size: 34.867px;
    font-style: normal;
    line-height: normal;
}


.founder-role {
    margin-top: 0.5rem;
    color: #FFFEFB;
    font-family: "SafiroMedium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  
  
    @media (max-width: 768px) {
   
.founder-role {
    margin-top: 0.5rem;
    color: #FFFEFB;
    font-family: "SafiroMedium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: start;
    margin-left: 1.2rem;
}
  }
  
  .founder-quote {
    background-color: #000;
  }
.script-text {
  color: #FFFEFB;
  text-align: center;
  font-family: 'AmsterdamFour', cursive;
  font-size: clamp(1.5rem, 4vw, 47.344px); /* min, fluid, max */
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}


/* Mobile */
@media (max-width: 768px) {
  .founder-section {
    width: 100%;
    min-height: auto;       /* allow height to adjust to content */
    height: auto;
    padding-bottom: 2rem;   /* optional, prevent content from touching bottom */
    overflow: hidden;       /* prevents image or content from overflowing */
  }
  .founder-img {
    position: relative;   /* ✅ absolute hata diya */
    top: auto;
    left: auto;
    transform: none;
    width: 100%;          /* ✅ full width top pe */
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto 1.5rem auto; /* ✅ neeche thoda gap */
    order: -1;            /* ✅ force karo image ko content se pehle */
  }


    .founder-name {
        font-size: 1.25rem !important;
        max-width: 260.949px;
        text-align: start;
        margin-left: 1.2rem;
    }
 .founder-quote {
    padding: 1.5rem;       /* extra breathing space */
    text-align: left;      /* better readability on phones */
  }

  .script-text {
    font-size: 1.2rem;    /* scale down for mobile */
    max-width: 100%;       /* never overflow */
  }
  .row.g-0.position-relative {
    display: flex;
    flex-direction: column;
  }

  .founder-left,
  .founder-right {
    min-height: auto;
    /* padding: 1.5rem 1rem; */
    text-align: center;
  }

  .founder-left {
    order: 2; /* ✅ content image ke baad rahe */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}





  /* founder section navin ansal */
  .founder-section-navin {
  position: relative;
  display: flex;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

/* Left half */
.founder-section-navin .pink {
  flex: 1;
  background: #e6b8b8; /* light pink */
}

/* Right half */
.founder-section-navin .black {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 80px;
  color: #fff;
  text-align: right;
}

/* Text styling */
.founder-section-navin .text-box h2 {
  margin: 0;
  line-height: 1.2;
  color: #FFF;
  font-family: "MiedingerBold";
  font-size: 34.867px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.founder-section-navin .text-box p {
  margin-top: 5px;
  color: #FFFEFB;
  font-family: "Safiro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Founder Image */
.founder-section-navin .founder-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
/* ✅ Mobile fix */
/* ✅ Desktop view same rahega */
/* Mobile view */
@media (max-width: 768px) {
  .founder-section-navin {
    flex-direction: column;
    height: auto;
  }

  /* Image top & center with fixed size */
  .founder-section-navin .founder-image {            /* sabse upar */
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
        margin: 0 auto 1.5rem auto;
        order: -1;
  }

  /* halves stack below */
  .founder-section-navin .pink,
  .founder-section-navin .black {
    flex: none;
    width: 100%;
    min-height: auto;
    /* padding: 2rem 1rem; */
    text-align: center;
    justify-content: center;
  }

  .founder-section-navin .black {
    padding-right: 0;
  }
}

/* prefooter section */

      .slide-container {
            position: relative;
             height: 100vh; 
            max-height: 515px !important;
            width: 200vw;
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
        }
        
        .slide-container.slide-right {
            transform: translateX(-100vw);
        }
        
      .slide {
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; /* content center ho jaye */
  padding: 2rem; /* responsive spacing */
  box-sizing: border-box;
}
        
        /* First Slide - White Background */
        .slide-1 {
            background: white;
            color: black;
        }
        
        /* Second Slide - Black Background */
        .slide-2 {
            background: black;
            color: white;
        }
        
        .slide-content {
            width: 100%;
            padding-left: 80px;
            max-width: 800px;
        }
        
        .main-title {
            max-width: 621.127px;
            margin-bottom: 80px;
            text-transform: uppercase;
            color: #0F0000;
            font-family:"MiedingerBold";
            font-size: 60.325px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }
        
        .description-container {
            display: flex;
            gap: 50px;
            max-width: 700px;
            flex-direction: column;
        }
        
.description {
  max-width: 814px;                  
  width: 100%;                       
  flex: 1;
  color: #000;
  font-family: "SafiroMedium";
  font-size: clamp(0.95rem, 2.5vw, 24px); /* fluid font-size */
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 auto;                                  
}

/* 📱 Mobile (<=480px) */
@media (max-width: 480px) {
  .description {
    font-size: clamp(0.85rem, 4vw, 1rem); /* smaller readable font */
    line-height: 1.4;
  }
}

/* 📲 Tablet (481px–768px) */
@media (max-width: 768px) {
  .description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    line-height: 1.5;
  }
}

        
        .description a {
            color: inherit;
            text-decoration: underline;
        }
        
        /* Small icon positioned exactly in the title */
        .title-icon {
            position: absolute;
            top: 38%;
            right: 42%;
            width: 80px;
            height: 60px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .icon-base {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #e8e8e8;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .icon-overlay {
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f8a5c2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: top 0.3s ease;
        }
        
        .title-icon:hover .icon-overlay {
            top: 0;
        }
        
        .title-icon:hover .icon-base {
            transform: translateY(100%);
        }
        
        .icon-base i,
        .icon-overlay i {
            font-size: 20px;
            color: #666;
        }
        
        .icon-overlay i {
            color: white;
        }
        
        /* Bottom right circular arrow */
        .nav-arrow {
            position: absolute;
            /* top: 250px; */
            right: 5px;
            width: 70px;
            height: 70px;
            /* background: black; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .slide-2 .nav-arrow {
            background: white;
            left: 80px;
            right: auto;
        }
        
        /* .nav-arrow:hover {
            transform: scale(1.1);
        } */
        
        .nav-arrow i {
            font-size: 20px;
            color: white;
        }
        
        .slide-2 .nav-arrow i {
            color: black;
        }
        
        
        /* Second slide specific styles */
        .pink-shape {
            position: absolute;
            left: -250px;
            top: -100px;
            width: 600px;
            height: 800px;
            background: #f8a5c2;
            transform: rotate(45deg);
            z-index: 1;
        }
        
        .shape-icon {
            position: absolute;
            top: 350px;
            right: 200px;
            width: 100px;
            height: 80px;
            background: white;
            transform: rotate(-45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: pointer;
        }
        
        .shape-icon-base {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .shape-icon-overlay {
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f8a5c2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: top 0.3s ease;
        }
        
        .shape-icon:hover .shape-icon-overlay {
            top: 0;
        }
        
        .shape-icon:hover .shape-icon-base {
            transform: translateY(100%);
        }
        
        .shape-icon i {
            font-size: 28px;
            color: #666;
        }
        
        .shape-icon-overlay i {
            color: white;
        }
        
        .form-section {
            position: relative;
            z-index: 2;
            max-width: 650px;
            margin-left: auto;
            margin-right: 120px;
        }
        
        .form-title {
          font-weight: 700;
          margin-bottom: 30px;
          letter-spacing: 2px;
           width: 781.63px;
            text-transform: uppercase;
            letter-spacing: -2px;
            color: #FFF;
            font-family: "MiedingerBold";
            font-size: 42.145px;
            font-style: normal;
            line-height: normal;
        }
        
        .form-row {
            display: flex;
            gap: 60px;
            margin-bottom: 50px;
        }
        
        .form-group {
            flex: 1;
            position: relative;
        }
        
        .form-label {
           width: 84px;
            display: block;
            color: #FFF;
            font-family: "Safiro";
           font-size: 16px;
           font-style: normal;
            font-weight: 500;
            line-height: normal;
            text-transform: uppercase;
        }
        
        .form-control {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid #555;
            /* padding: 20px 0; */
            color: white;
            font-size: 1.2rem;
            outline: none;
        }
        
        .form-control:focus {
            border-bottom-color: #f8a5c2;
        }
        
        .form-control::placeholder {
            color: #777;
            font-size: 1.1rem;
        }
        
        .submit-btn {
            background: white;
            border: none;
            padding: 3px 27px;
            border-radius: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 40px;
            color: #140102;
            font-family: "MiedingerBold";
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }
        
        .submit-btn:hover {
            background: #f8a5c2;
            color: white;
        }
        
        /* Up arrow at bottom center of second slide */
        .up-arrow {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: #444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .up-arrow:hover {
            transform: translateX(-50%) scale(1.1);
        }
        
        .up-arrow i {
            color: white;
            font-size: 18px;
        }
        
        @media (max-width: 1200px) {
            .main-title {
                font-size: 5rem;
            }
            
            .title-icon {
                right: 35%;
            }
        }
        
        @media (max-width: 480px) {

                .main-title {
                    font-size: 1.7rem;
                    margin: 34px auto;
                }
         }
         
                 /* ============================
           tablet (≥480px)
           ============================ */
         
           @media (min-width: 481px) and (max-width: 768px) {
               .main-title {
                font-size: 3rem;
                margin:0px;
            }
          }

         
        
        @media (max-width: 768px) {

              .slide {
              width: 100vw;
              position: relative;
              display: flex;
              align-items: center;
              justify-content: center;
              padding: 1rem;
              box-sizing: border-box;
             }
            
            .form-title {
                font-size: 1.5rem;
                width: 100%;
            }
            .slide-content {
                padding-left: 0px;
            }
            
          .description-container {
            flex-direction: column;
            gap: 0;
            width: 100%;          /* full width in mobile */
            max-width: 287px;     /* optional: cap width so it doesn’t grow too wide */
            text-align: left;
          }
            
            .form-section {
                margin-right: 40px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 30px;
            }
            
            .nav-arrow, .up-arrow {
                bottom: 40px;
            }
            
            .nav-arrow {
                right: 40px;
            }
            
            .slide-2 .nav-arrow {
                left: 40px;
            }
            
            .title-icon {
                right: 20%;
                top: 35%;
            }
        }


.nav-arrow.prefooter-icon-clip {
  --icon-size: 35rem;       
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111; 
  user-select: none;
  outline: none;
  overflow: hidden; /* important for slide effect */
}

.prefooter-icon {
  position: relative;
  /* width: 100%;
  height: 100%; */
    width: 510px;
    height: 508px;
    flex-shrink: 0;
    aspect-ratio: 255 / 254;
}

.prefooter-icon svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke-width: 16px;
  stroke-miterlimit: 10;
  fill: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
/* 📱 Mobile View (<=480px) */
@media (max-width: 480px) {
   .prefooter-icon svg {
        top: 5.5rem;
        left: 15rem;
        width: 100%;
        height: auto;
        stroke-width: 12px;
    }
    .prefooter-icon{
    width: 80.313px;
    height: 80px;
    flex-shrink: 0;
    aspect-ratio: 80.31 / 80.00;
    }
    .slide-container {
      height: auto;
    }
    .slide-container.slide-right {
    transform: translateX(0vw);
}
}

/* default black arrow */
.prefooter-icon .icon-default { 
  opacity: 1; 
  transform: translate(0,0); 
}

/* pink hover arrow starts outside top-left for down-right slide */
.prefooter-icon .icon-hover { 
  opacity: 0; 
  transform: translate(-100%, -100%); 
   color: #f2cdcf;
}

/* hover/focus effect */
.prefooter-icon-clip:hover .icon-default,
.prefooter-icon-clip:focus-visible .icon-default { 
  opacity: 0; 
  transform: translate(100%, 100%); /* slide out down-right */ 
}

.prefooter-icon-clip:hover .icon-hover,
.prefooter-icon-clip:focus-visible .icon-hover { 
  opacity: 1; 
  transform: translate(0,0); /* slide in to center */ 
}

/* click feedback */
.prefooter-icon-clip:active .prefooter-icon svg {
  transform: scale(.95);
}



/* click feedback */
/* .prefooter-icon-clip:active .prefooter-icon svg{
  transform: scale(.95);
} */

/* optional: make it extra large on bigger screens */
@media (min-width: 992px){
  /* .nav-arrow.prefooter-icon-clip{ --icon-size: 112px; } */
}


 .nav-arrow,
.prefooter-icon-clip,
.prefooter-icon svg {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}   


.slide-2 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px;
      position: relative;
      min-height: 60vh;
      gap: 40px;
    }

    /* Left Arrow */
    .nav-arrow.prefooter-icon-clip-left {
      --icon-size: 35rem;
      width: var(--icon-size);
      height: var(--icon-size);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .prefooter-icons {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .prefooter-icons svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: translateX(100%);
      transition: none;
      pointer-events: none;
    }

    .nav-arrow.prefooter-icon-clip-left:hover .icon-hover,
    .nav-arrow.prefooter-icon-clip-left:focus-visible .icon-hover {
      animation: revealThenExit 1s ease-out forwards;
      color: #f2cdcf;
    }

    @keyframes revealThenExit {
      0%   { opacity:0; transform:translateX(100%); }
      30%  { opacity:1; transform:translateX(0); }
      100% { opacity:0; transform:translateX(-100%); }
    }

    /* Right Form */
    .form-section {
      flex: 1;
      text-align: left;
      margin-left: auto;
    }

    .form-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px;
      letter-spacing: 2px;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: flex-end;
    }

    .form-group {
      flex: 1;
      min-width: 180px;
    }

    .form-label {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .form-control {
      background: transparent;
      border: none;
      border-bottom: 1px solid #666;
      border-radius: 0;
      color: #fff;
      font-size: 0.95rem;
      padding: 5px 0;
    }

    .form-control::placeholder {
      color: #777;
    }

    .submit-btn {
      background: #fff;
      border: none;
      padding: 6px 20px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.85rem;
      color: #000;
      text-transform: uppercase;
      transition: 0.3s;
      align-self: center;
    }

    .submit-btn:hover {
      background: #f2cdcf;
      color: #000;
    }

    /* ✅ Responsive Fix */
    @media (max-width: 768px) {
      .slide-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
      }
      .form-section {
        margin-left: 0;
        width: 100%;
      }
      .form-row {
        flex-direction: column;
        align-items: stretch;
      }
      .submit-btn {
        margin: 20px auto 0;
        display: block;
      }
    }





.moth-fixed {
  position: fixed;   /* fixed position → doesn’t scroll */
  left: 5vw;         /* adjust spacing from left */
  top: 40%;          /* vertical center-ish */
  transform: translateY(-50%); /* perfect vertical alignment */
  max-width: 150px;
  z-index: 10;       /* stay above background */
}

.icon-default {
  color: #f2f2f2; /* any color you want */
}

@media(min-width:769px){
   sticky-section {
      display: flex;
      align-items: flex-start;
      gap: clamp(2rem, 5vw, 4rem);              /* heading aur content ke beech distance */
      padding: 0 clamp(2vw, 5vw, 10vw);
      min-height: 60vh;      /* scroll ke liye height */
      flex-wrap: wrap;
    } 
}
  @media (min-width: 481px) and (max-width: 768px) {
    .nav-arrow{
        right: -70px;
        bottom: -20px;
  }
  .prefooter-icon {
    position: relative;
    width: 510px;
    height: 385px;
    flex-shrink: 0;
    aspect-ratio: 255 / 254;
}
  }
 